home *** CD-ROM | disk | FTP | other *** search
/ TPUG - Toronto PET Users Group / TPUG Users Group CD / TPUG Users Group CD.iso / AMIGA / AMICUS / AMICUS17.ADF / Tektronix / readme < prev    next >
Text File  |  1989-01-27  |  4KB  |  95 lines

  1. This archive contains a vt100 emulator with KERMIT and XMODEM file
  2. transfer protocols by Dave Wecker (V2.3 DBW 861101).
  3. Also has Tek emulation (version vtek2.3.1--DEG 870201).
  4.  
  5. Thanks:
  6. -------
  7.     To everyone who sent in code and suggestions!
  8.  
  9. Releases:
  10. ---------
  11.    vtek2.3.1 870201 DEG - fixed Tek page command, plot height.
  12.     vtek 861206 DEG - added Tektronix emulation
  13.     v2.3 861101 DBW - minor buf fixes
  14.     v2.2 861012 DBW - more of the same
  15.      v2.1 860915 DBW - new features (see README)
  16.     v2.0 860823 DBW - Major rewrite
  17.     v1.1 860720 DBW    - Switches, 80 cols, colors, bug fixes
  18.     v1.0 860712 DBW    - First version released
  19.  
  20. Usage:
  21. ------
  22.     Please read VT100.DOC for usage information and examples.
  23.  
  24. Release Notes:
  25. --------------
  26. vtek2.3.1 870201 DEG -
  27.         - fixed Tek page command.  Now supports both Tektronix and
  28.           Retrographics page commands.
  29.         - used NewWindow.Height for vertical scaling rather than 400
  30.           throughout window.c.
  31.  
  32. vtek 861206 DEG - Tektronix emulation added:
  33.  
  34.     - added intek flag in vt100.h (main switch in and out of plotting
  35.       mode).  
  36.     - disabled lookahead buffer in vt100.c when !intek.
  37.     - main change is to window.c, where functions crosshair(), doTek(),
  38.       and sendposn() have been added.  Changes to emit() to support
  39.       Tek commands.
  40.     - remote.c changed to support Tek escape sequences.
  41.  
  42. v2.3 861101 DBW - minor bug fixes:
  43.  
  44.     - added p_wbcolors to allow workbench colors on custom screen
  45.       (In the init file you can specify WBCOLORS to be NO (use color
  46.        definitions in INIT FILE or VT100.H) or YES (use WORKBENCH
  47.        colors for everything)).
  48.     - "$" now sends a kermit-bye (like it says in VT100.DOC).
  49.     - made window/screen heights more reasonable
  50.     - Added ANSI insert line and delete line (<csi><num>L and
  51.       <csi><num>M) to speed up various editors (like emacs).
  52.       NOTE: This is NOT a VT100 sequence (new extension).
  53.     - ctrl-space now also sends a null (along with ^@ and ^`)
  54.     - RAWKEY fixed in WINDOW.C
  55.     - p_wrap fixed in WINDOW.C
  56.     - removed WRDMAX from VT100.H
  57.     - fixed exit with no params in SCRIPT.C
  58.     - fixed parity comparisons in KERMIT.C
  59.     - init file [n+1] changed to [nplus1] to make Lattice happy.
  60.     - cursoron(), cursoroff() changed to one routine cursorflip().
  61.     - long lines shortened to less than 80 characters (for gateways).
  62.     - blanks following exit (or comments) now work in scripts.
  63.  
  64. v2.2 861012 DBW - more of the same:
  65.  
  66.     - The INIT file "exit" command can now take an optional argument
  67.       which is the name of a script to execute after initialization
  68.       is complete.
  69.  
  70.     - The SCRIPT command "exit" takes an optional paramater which may
  71.       be either the pathname of the next script to execute or the
  72.       string "VT100" (which causes the emulator to exit completely).
  73.  
  74.     - Hangup menu item now works.
  75.  
  76.     - Autowrap can now be set from VT100.H, VT100.INIT and the standard
  77.       escape sequence (<ESC>[?7h - set, <ESC>[?7l - reset)
  78.  
  79.     - Control-G is now handled with an audible beep (volume set with the
  80.       VOLUME parameter in VT100.H and VT100.INIT). If the volume is set
  81.       to 0, a visual beep (DisplayBeep) will be used instead.
  82.  
  83.     - Script now used "^chr" to send control characters instead of
  84.       "|" (which was screwing up U**X users). See VT100.DOC for details.
  85.  
  86.     - The graphics "box" character (a) was added so bar charts now work
  87.       in line drawing mode (e.g., monitor system on VMS).
  88.  
  89.     - Control-@ and Control-` now send the NULL character
  90.  
  91.     - Alternate color for BOLD has been re-instated by popular demand
  92.       (instead of using SetSoftStyle) when there is more than 1 bit-
  93.       plane. With one bit-plane, SetSoftStyle is used.
  94.  
  95.     - Menus